home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Conference & Expo 2005 / Macworld Conference and Expo - Documentation CD-ROM (2004).iso / mac / Adobe Reader 6.0 / Adobe Reader 6.0.app / Contents / Resources / Adobe Reader.rsrc / EXVW_10027_admPrefsAnnotations < prev    next >
Text File  |  2004-01-30  |  693b  |  19 lines

  1. gMaxWidth=max(
  2.     zstring_width(zstring: '$$$/Prefs/Annotations/Font'),
  3.     zstring_width(zstring: '$$$/Prefs/Annotations/FontSize'));
  4.  
  5. dialog(name: '$$$/Prefs/Annotations', margin_height: 0, margin_width: 0)
  6. {
  7.     cluster(name: '$$$/Prefs/Annotations', dheight: gPrefsPanelHeight, dwidth: gPrefsPanelWidth)
  8.     {
  9.         view(align_children: align_row, alignment: align_fill)
  10.         {
  11.             static_text(name: '$$$/Prefs/Annotations/Font');
  12.             popup(item_id: 'font', alignment: align_fill);
  13.             gap();
  14.             static_text(item_id: 'fsiL', name: '$$$/Prefs/Annotations/FontSize');
  15.             edit_text( item_id: 'fsiz', width: zstring_width(zstring: '$$$/Prefs/Annotations/ThreeZeros=000'), PopupEdit: true, numeric: true);
  16.         }
  17.     }
  18. }
  19.